home *** CD-ROM | disk | FTP | other *** search
- #include "SpellWright.h"
-
- // ----------------------------------------------------------------------------------
- // Globals
- // ----------------------------------------------------------------------------------
-
- typedef struct {
- WindowPtr DocWindow;
- int DocNumber;
- short theFile;
- Str63 DocName;
- short vRefNum;
- long parID;
- TEHandle DocTE;
- ControlHandle DocVScroll;
- short dirty;
-
-
- } WinDocRecord;
-
-
- #define MIN(a, b) ((a) < (b) ? (a) : (b) )
-
- extern unsigned long gMain; // main Dict
- extern WindowPtr gDocWindow;
- extern short gPageLines;
- extern WindowPtr gFirstWindow;
- extern Boolean gHaveWNE; // WaitNextEvent is available
- extern Boolean gQuit; // Set to true when the user quits
- extern Boolean gInBack; // True if the app is currently in the background
- extern Boolean gSys7; // Sys 7 available
- extern CursHandle gTextCurs;
- extern SWChecker gtheSpeller;